.hero {
    --hero-background-desktop: url('');
    --hero-background-mobile: url('');
    
    position: relative;
    border-bottom-width: 10px;
    border-bottom-style: solid;
    
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: var(--hero-background-mobile);
    
    min-height: 100vh;
    min-height: 100dvh;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-wrapper {
    position: absolute;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 177.77777778vh; /* 100 * 16 / 9 */
    min-width: 100%;
    min-height: 56.25vw; /* 100 * 9 / 16 */
    left: 50%; /* % of surrounding element */
    top: 50%;
    transform: translate(-50%, -50%); /* % of current element */
    object-fit: cover;
    z-index: 0;
}

.hero > .container {
    padding-top: calc(var(--offset-menu) + 5rem);
    z-index: 1;
}

@media screen and (min-width: 992px) {
    .hero {
        background-image: var(--hero-background-desktop);
    }
    
    .hero-no-fullscreen {
        min-height: 550px;
        max-height: 550px;
    }
}

    /*.hero .content {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .hero .content p {
        display: none;
    }*/
    
    /*.hero .content .buttons {
        display: none !important;
    }*/
    .hero .content .buttons .button {
        margin: 0 !important;
    }

        .hero .content > div {
            min-height: 100%;
            padding-bottom: 1rem;
        }

            .hero .content > div > h1,
            .hero .content > div > h2,
            .hero .content > div > h3,
            .hero .content > div > h4,
            .hero .content > div > h5,
            .hero .content > div > h6,
            .hero .content > div > p,
            .hero .content > div > time,
            .hero .content > div > div {
                color: var(--surface-white);
                text-align: center;
            }

            .hero .content > div > h1 {
                margin: 1rem 0 1.5rem 0;
                text-shadow: 0 0 10px #6B6B6B;
            }

            .hero .content > div > p {
                /*max-width: 650px;*/
            }

        .hero .content picture {
            text-align: center;
        }
        .hero .content img {
            max-width: 80%;
        }

@media screen and (min-width: 768px) {
    .hero .content > div {
        padding-bottom: 5rem;
    }
        
    .hero .content p {
        display: block;
    }
    
    .hero .content .buttons {
        display: flex;
    }
    
    .hero .content picture {
        text-align: left;
    }
    
    .hero .content > div > h1,
    .hero .content > div > h2,
    .hero .content > div > h3,
    .hero .content > div > h4,
    .hero .content > div > h5,
    .hero .content > div > h6,
    .hero .content > div > p,
    .hero .content > div > time,
    .hero .content > div > div {
        text-align: left;
        max-width: 750px;
    }
}

.date-title {
    font-size: 1.5rem;
    color: var(--text-invert);
    text-transform: uppercase;
     text-shadow: 0 0 10px #6B6B6B;
}